home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / MATHS / RLAB / RLAB125.ZIP / !RLaB / help_ai / COMMAND < prev    next >
Text File  |  1995-05-21  |  1KB  |  42 lines

  1. COMMAND:
  2.  
  3.     The RLaB language has a several commands, they are listed
  4.     below. Commands are different than functions, in that they do
  5.     not require parentheses to delimit the function argument(s).
  6.  
  7.     Commands may not occur anywhere in an expression or statement.
  8.     Commands must be issued from the command line prompt, on a
  9.     line by themselves.
  10.  
  11.     Commands:
  12.  
  13.     help    The help command, without an argument, prints a listing
  14.         of the available help files. The help command can take
  15.         a single argument, that is the name of a help
  16.         file. The named help file will be paged to the screen
  17.         (stdout). See `help help'
  18.  
  19.     rfile    The rfile command, without argument(s), prints a
  20.         listing of the available rfiles. The rfile command can
  21.         take one, or several arguments, that are the names of
  22.         help files to be loaded into the current rlab
  23.         environment. The rfile argument(s) can be the full
  24.         file name (ending in `.r'), or a shorthand for the
  25.         file name (without the `.r' extension).
  26.         See `help rfile'
  27.  
  28.     require    The require command is similar to the rfile
  29.         command. See `help require'
  30.  
  31.     \    When a backslash is the first character on the command
  32.         line, the rest of the command line is fed to the
  33.         system() function. Thus:
  34.  
  35.             system ("ls *.r");
  36.  
  37.         and
  38.  
  39.             \ ls *.r
  40.  
  41.         produce the same result.
  42.